home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Full / Paragon Drive Backup 9 / DB90_SE_x32.msi / Data1.cab / _F84DB62464F34BC98FB6297C71769A1C < prev    next >
Extensible Markup Language  |  2008-10-24  |  2KB  |  62 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <xsl:stylesheet 
  4.   xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  5.   xmlns:msxsl="urn:schemas-microsoft-com:xslt"
  6.   version="1.0">
  7.  
  8. <xsl:output 
  9.   method="text" 
  10.   encoding="UTF-8" 
  11.   omit-xml-declaration="yes" 
  12.   indent="no"/>
  13.  
  14. <xsl:strip-space elements="*"/>
  15.  
  16. <xsl:template match="/report">
  17.  
  18. QT_TRANSLATE_NOOP("QObject", "Short E-mail notification report.")
  19.  
  20. ----------------------------------------------------------------------------------
  21. QT_TRANSLATE_NOOP("QObject", "System info:")
  22. ----------------------------------------------------------------------------------
  23.  
  24. QT_TRANSLATE_NOOP("QObject", "Computer Name: ")<xsl:value-of select="computer"/>
  25. <xsl:text> </xsl:text><xsl:value-of select="OS"/>
  26.  
  27. ----------------------------------------------------------------------------------
  28. QT_TRANSLATE_NOOP("QObject", "Summary:")
  29. ----------------------------------------------------------------------------------
  30.  
  31. QT_TRANSLATE_NOOP("QObject", "Generated: ")<xsl:value-of select="generated"/><xsl:text> </xsl:text>
  32.  
  33. <xsl:choose>
  34. <xsl:when test="error">
  35. QT_TRANSLATE_NOOP("QObject", "Not the all operations have been applied.")
  36. QT_TRANSLATE_NOOP("QObject", "The following error had occured:")<xsl:value-of select="error/@description"/> (<xsl:value-of select="error/@code"/>)
  37. </xsl:when>
  38. <xsl:otherwise>
  39. QT_TRANSLATE_NOOP("QObject", "All operations have been applied successfully.")
  40. </xsl:otherwise>
  41. </xsl:choose>
  42. ----------------------------------------------------------------------------------
  43. QT_TRANSLATE_NOOP("QObject", "The following operations have been performed:")
  44. ----------------------------------------------------------------------------------
  45.  
  46. <xsl:for-each select="action[@type='physical']">
  47. <xsl:text> </xsl:text><xsl:value-of select="@description"/><xsl:text> </xsl:text>
  48.  
  49. <xsl:if test="error">
  50. <xsl:text> </xsl:text>QT_TRANSLATE_NOOP("QObject", "The operation has failed:")
  51. <xsl:text> </xsl:text><xsl:value-of select="error/@description"/> (<xsl:value-of select="error/@code"/>)
  52. </xsl:if>
  53. <xsl:text> </xsl:text>
  54. </xsl:for-each>
  55. ----------------------------------------------------------------------------------
  56. QT_TRANSLATE_NOOP("QObject", "You have requested short e-mail reports from Drive BackupΓäó")
  57. QT_TRANSLATE_NOOP("QObject", "Please change e-mail options to get full reports or to stop getting the reports.")
  58.  
  59. </xsl:template>
  60.  
  61. </xsl:stylesheet>
  62.